home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / giochi / eldritch.lha / Install_to_HD < prev    next >
Text File  |  1995-09-17  |  2KB  |  129 lines

  1. ; $VER: Install Eldritch V1.27 (BETA) (17 September 1995)
  2. ; This script can be distributed with the Eldritch game by
  3. ; James N. Weatherall (WEZ of SCROTUM)
  4.  
  5. ; ask where to install Eldritch
  6. (set @default-dest
  7.  (askdir
  8.    (prompt "Please select the Directory where you would like to install"
  9.            " the Eldritch game disk files. ")
  10.    (help @askdir-help)
  11.    (default "Games:")
  12.  )
  13. )
  14.  
  15. (working "Installing Eldritch Program")
  16. (copyfiles
  17.    (prompt "Eldritch")
  18.    (help @copyfiles-help)
  19.    (source "Eldritch")
  20.    (dest @default-dest)
  21.    (infos)
  22. )
  23.  
  24. (copyfiles
  25.    (prompt "Bin directory")
  26.    (help @copyfiles-help)
  27.    (source "Bin")
  28.    (dest (tackon @default-dest "Bin"))
  29.    (infos)
  30.    (all)
  31. )
  32.  
  33. (copyfiles
  34.    (prompt "Displays directory")
  35.    (help @copyfiles-help)
  36.    (source "Displays")
  37.    (dest (tackon @default-dest "Displays"))
  38.    (infos)
  39.    (all)
  40. )
  41.  
  42. (copyfiles
  43.    (prompt "Graphics directory")
  44.    (help @copyfiles-help)
  45.    (source "Graphics")
  46.    (dest (tackon @default-dest "Graphics"))
  47.    (infos)
  48.    (all)
  49. )
  50.  
  51. (copyfiles
  52.    (prompt "Sound directory")
  53.    (help @copyfiles-help)
  54.    (source "Sound")
  55.    (dest (tackon @default-dest "Sound"))
  56.    (infos)
  57.    (all)
  58. )
  59.  
  60. (copyfiles
  61.    (prompt "Install Eldritch.Guide?")
  62.    (help @copyfiles-help)
  63.    (source "Eldritch.Guide")
  64.    (dest @default-dest)
  65.    (infos)
  66.    (confirm)
  67. )
  68.  
  69. (copyfiles
  70.    (prompt "Templates directory")
  71.    (help @copyfiles-help)
  72.    (source "Templates")
  73.    (dest (tackon @default-dest "Templates"))
  74.    (infos)
  75.    (all)
  76. )
  77.  
  78. (copyfiles
  79.    (prompt "Install City directory?")
  80.    (help @copyfiles-help)
  81.    (source "Cities")
  82.    (dest (tackon @default-dest "Cities"))
  83.    (infos)
  84.    (all)
  85.    (confirm)
  86. )
  87.  
  88. (copyfiles
  89.    (prompt "Intro sequence")
  90.    (help @copyfiles-help)
  91.    (source "Intro")
  92.    (dest @default-dest)
  93.    (infos)
  94. )
  95.  
  96. (copyfiles
  97.    (prompt "Template Generator")
  98.    (help @copyfiles-help)
  99.    (source "TempGen")
  100.    (dest @default-dest)
  101.    (infos)
  102. )
  103.  
  104. (copylib
  105.    (prompt "Installing amos.library")
  106.    (help @copylib-help)
  107.    (source "Libs/amos.library")
  108.    (dest "Libs:")
  109.    (confirm)
  110. )
  111.  
  112. (copylib
  113.    (prompt "Installing medplayer.library")
  114.    (help @copylib-help)
  115.    (source "Libs/medplayer.library")
  116.    (dest "Libs:")
  117.    (confirm)
  118. )
  119.  
  120. (startup @app-name
  121.    (prompt "Shall I add Virus_Checker to your s:startup-sequence"
  122.       "/s:user-startup so that it will be run each time"
  123.       " you turn your Amiga on")
  124.    (help @startup-help)
  125.    (command "Virus_Checker")
  126. )
  127.  
  128. (exit)
  129.